home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / shrlk201.zip / _SETUP.1 / KeyGenerator.dpr < prev    next >
Text File  |  1997-07-22  |  270b  |  15 lines

  1. program KeyGenerator;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'Main.pas' {frmUnlockGenerator};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.Title := 'Key Generator';
  12.   Application.CreateForm(TfrmUnlockGenerator, frmUnlockGenerator);
  13.   Application.Run;
  14. end.
  15.